Nginx : Enable Userdir
2015/08/18 |
Enable Userdir for common users to open their site in the home directories.
|
|
[1] | Configure Nginx. |
[root@www ~]#
vi /etc/nginx/nginx.conf # add into "server" section location ~ ^/~(.+?)(/.*)?$ { alias /home/$1/public_html$2; index index.html index.htm; autoindex on; } systemctl restart nginx |
[2] | Create a test page with a common user to make sure it works normally. |
[cent@www ~]$ chmod 711 /home/cent [cent@www ~]$ mkdir ~/public_html [cent@www ~]$ chmod 755 ~/public_html
[cent@www ~]$
vi ~/public_html/index.html <html> <body> <div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;"> Nginx UserDir Test Page </div> </body> </html> |